<head> element
The
<head>
element specifies information about the deck as a whole, including metadata and access control information.
Syntax
<head>
content
</head>
where
content
represents deck-level header information:
content
You can optionally specify either of the following elements in a WML deck header:
<access>
<meta>
one
only
one or more
(see
<access> element
)
(see
<meta> element
)
Example
The following example illustrates how to specify the maximum age of a deck. The WML definition includes a
<meta>
statement that uses cache-control within the
<head>
element
<wml>
<head>
<meta http-equiv="Cache-Control" content="max-age=3600" forua="true"/>
</head>
<card>
...
...
</card>
<card>
...
...
</card>
</wml>